home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / LEDIT108.ZIP / LEDLP / LEDLP_2B.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-07-04  |  470 b   |  29 lines

  1. unit Ledlp_2b;
  2.  
  3. interface
  4.  
  5. uses
  6.   WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Ledlp;
  7.  
  8. type
  9.   TMDIChild = class(TForm)
  10.     LEdit1: TLEdit;
  11.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  12.   private
  13.     { Private declarations }
  14.   public
  15.     { Public declarations }
  16.   end;
  17.  
  18. implementation
  19.  
  20. {$R *.DFM}
  21.  
  22.  
  23. procedure TMDIChild.FormClose(Sender: TObject; var Action: TCloseAction);
  24. begin
  25.   Action := caFree;
  26. end;
  27.  
  28. end.
  29.